home *** CD-ROM | disk | FTP | other *** search
/ Programmer Plus 2007 / Programmer-Plus-2007.iso / Programming / High Level Languages / Turbo C v3.0 / Tc3setup.exe / EXAMPLES / HELLO.C < prev    next >
Encoding:
C/C++ Source or Header  |  1992-02-18  |  177 b   |  12 lines

  1. // Borland C++ - (C) Copyright 1991 by Borland International
  2.  
  3. /*    HELLO.C -- Hello, world */
  4.  
  5. #include <stdio.h>
  6.  
  7. int main()
  8. {
  9.     printf("Hello, world\n");
  10.     return 0;
  11. }
  12.